home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / dev / lang / f2c_amiga1.lha / f2c-1993.04.28amiga / libF77 / abort_.c next >
C/C++ Source or Header  |  1993-04-28  |  239b  |  19 lines

  1. #include "stdio.h"
  2. #include "f2c.h"
  3.  
  4. #ifdef KR_headers
  5. extern VOID sig_die();
  6.  
  7. int abort_()
  8. #else
  9. extern void sig_die(char*,int);
  10.  
  11. int abort_(void)
  12. #endif
  13. {
  14. sig_die("Fortran abort routine called", 1);
  15. #ifdef __cplusplus
  16. return 0;
  17. #endif
  18. }
  19.